home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / progs / disk / optycdplayer / arexx / help.rexx < prev    next >
OS/2 REXX Batch file  |  1996-10-18  |  326b  |  16 lines

  1. /*
  2. ** This script shows how to obtain the list of ARexx commands.
  3. */
  4.  
  5. options results
  6. address 'OPTYCDPLAYER'
  7.  
  8. /* read the list into a temporary file */
  9. 'help t:_tmp'
  10.  
  11. /* type the file to stdout */
  12. address command "type t:_tmp >con:////Rayvery/CLOSE/WAIT"
  13.  
  14. /* delete the temporary file */
  15. address command "delete >nil: t:_tmp"
  16.